home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xmcd-1.4 / libdi.d / Makefile.std < prev    next >
Encoding:
Makefile  |  1995-05-10  |  1.7 KB  |  91 lines

  1. #
  2. #   @(#)Makefile.std    5.3 94/12/28
  3. #
  4. #   Imakefile for libdi
  5. #
  6. #    libdi - CD Audio Player Device Interface Library
  7. #
  8. #   NOTE: You should use this only if you don't have imake!
  9. #
  10. #   Copyright (C) 1995  Ti Kan
  11. #   E-mail: ti@amb.org
  12. #
  13. #   This program is free software; you can redistribute it and/or modify
  14. #   it under the terms of the GNU General Public License as published by
  15. #   the Free Software Foundation; either version 2 of the License, or
  16. #   (at your option) any later version.
  17. #
  18. #   This program is distributed in the hope that it will be useful,
  19. #   but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21. #   GNU General Public License for more details.
  22. #
  23. #   You should have received a copy of the GNU General Public License
  24. #   along with this program; if not, write to the Free Software
  25. #   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26. #
  27.  
  28. include ../make.inc
  29.  
  30. #
  31. # See the comments in Imakefile about the items
  32. # in the DEFINES= line below.
  33. #
  34. DEFINES=
  35.  
  36. LIBDI=    libdi.a
  37.  
  38. SRCS=    libdi.c \
  39.     scsipt.c \
  40.     os_aix.c \
  41.     os_aux.c \
  42.     os_dec.c \
  43.     os_dgux.c \
  44.     os_hpux.c \
  45.     os_irix.c \
  46.     os_linux.c \
  47.     os_odt.c \
  48.     os_sun.c \
  49.     os_svr4.c \
  50.     os_demo.c \
  51.     os_cdsim.c \
  52.     vu_chin.c \
  53.     vu_hita.c \
  54.     vu_nec.c \
  55.     vu_pion.c \
  56.     vu_sony.c \
  57.     vu_tosh.c \
  58.     slioc.c
  59.  
  60. OBJS=    libdi.o \
  61.     scsipt.o \
  62.     os_aix.o \
  63.     os_aux.o \
  64.     os_dec.o \
  65.     os_dgux.o \
  66.     os_hpux.o \
  67.     os_irix.o \
  68.     os_linux.o \
  69.     os_odt.o \
  70.     os_sun.o \
  71.     os_svr4.o \
  72.     os_demo.o \
  73.     os_cdsim.o \
  74.     vu_chin.o \
  75.     vu_hita.o \
  76.     vu_nec.o \
  77.     vu_pion.o \
  78.     vu_sony.o \
  79.     vu_tosh.o \
  80.     slioc.o
  81.  
  82. all: $(LIBDI)
  83.  
  84. $(LIBDI): $(OBJS)
  85.     rm -f $@
  86.     $(AR) $@ $(OBJS)
  87.     $(RANLIB) $@
  88.  
  89. install:
  90.  
  91.